ABC153 B - Common Raccoon vs Monster
https://atcoder.jp/contests/abc153/tasks/abc153_b
code: python
h, n = map(int, input().split())
a = list(map(int, input().split()))
if (h > sum(a)):
print("No")
else:
print("Yes")